fix(controls): Remove FlowDirection Trigger from RadioButton.xaml#1616
Merged
pomianowski merged 2 commits intolepoco:mainfrom Jan 10, 2026
Merged
fix(controls): Remove FlowDirection Trigger from RadioButton.xaml#1616pomianowski merged 2 commits intolepoco:mainfrom
pomianowski merged 2 commits intolepoco:mainfrom
Conversation
Setting HorizontalAlignment=Right when FlowDirection is RightToLeft achieves the exact opposite of the desired if the RadioButton's parent is also set to RightToLeft. This apparently also prevents any derived styles (and even direct control properties) from changing this behavior.
Nuklon
approved these changes
Jan 6, 2026
pomianowski
approved these changes
Jan 10, 2026
This was referenced Jan 12, 2026
This was referenced Jan 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Setting HorizontalAlignment=Right when FlowDirection is RightToLeft achieves the exact opposite of the desired if the RadioButton's parent is also set to RightToLeft. This apparently also prevents any derived styles (and even direct control properties) from changing this behavior.
Pull request type
Please check the type of change your PR introduces:
What is the current behavior?
A RadioButton that uses
DefaultRadioButtonStyleand has both its own and parent'sFlowDirectionset toRightToLeftwill be forced to visual left alignment with no way to change it. (RightToLeft switches the display ofHorizontalAlignmentso that left alignment actually becomes right alignment and vice versa)What is the new behavior?
The style no longer forces
HorizontalAlignmentthroughFlowDirectiontrigger and lets the library user full control of this behavior.